home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / idict.h < prev    next >
C/C++ Source or Header  |  1997-05-04  |  9KB  |  241 lines

  1. /* Copyright (C) 1989, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* idict.h */
  20. /* Interfaces for Ghostscript dictionary package */
  21.  
  22. /*
  23.  * Contrary to our usual practice, we expose the (first-level)
  24.  * representation of a dictionary in the interface file,
  25.  * because it is so important that access checking go fast.
  26.  * The access attributes for the dictionary are stored in
  27.  * the values ref.
  28.  */
  29. struct dict_s {
  30.     ref values;        /* t_array, values */
  31.     ref keys;        /* t_shortarray or t_array, keys */
  32.     ref count;        /* t_integer, count of occupied entries */
  33.                 /* (length) */
  34.     ref maxlength;        /* t_integer, maxlength as seen by client. */
  35. };
  36.  
  37. /*
  38.  * Define the maximum size of a dictionary.
  39.  */
  40. extern const uint dict_max_size;
  41.  
  42. /*
  43.  * Define whether dictionaries expand automatically when full.  Note that
  44.  * if dict_auto_expand is true, dict_put, dict_copy, dict_resize, and
  45.  * dict_grow cannot return e_dictfull; however, they can return e_VMerror.
  46.  * (dict_find can return e_dictfull even if dict_auto_expand is true.)
  47.  */
  48. extern bool dict_auto_expand;
  49.  
  50. /*
  51.  * Create a dictionary.
  52.  */
  53. int dict_create(P2(uint maxlength, ref *pdref));
  54.  
  55. /*
  56.  * Return a pointer to a ref that holds the access attributes
  57.  * for a dictionary.
  58.  */
  59. #define dict_access_ref(pdref) (&(pdref)->value.pdict->values)
  60. /*
  61.  * Check a dictionary for read or write permission.
  62.  * Note: this does NOT check the type of its operand!
  63.  */
  64. #define check_dict_read(dref) check_read(*dict_access_ref(&dref))
  65. #define check_dict_write(dref) check_write(*dict_access_ref(&dref))
  66.  
  67. /*
  68.  * Look up a key in a dictionary.  Store a pointer to the value slot
  69.  * where found, or to the (value) slot for inserting.
  70.  * The caller is responsible for checking that the dictionary is readable.
  71.  * Return 1 if found, 0 if not and there is room for a new entry,
  72.  * Failure returns:
  73.  *    e_typecheck if the key is null;
  74.  *    e_invalidaccess if the key is a string lacking read access;
  75.  *    e_VMerror or e_limitcheck if the key is a string and the corresponding
  76.  *      error occurs from attempting to convert it to a name;
  77.  *    e_dictfull if the dictionary is full and the key is missing.
  78.  */
  79. int dict_find(P3(const ref *pdref, const ref *key, ref **ppvalue));
  80.  
  81. /*
  82.  * Look up a (constant) C string in a dictionary.
  83.  * Return 1 if found, <= 0 if not.
  84.  */
  85. int dict_find_string(P3(const ref *pdref, const char _ds *kstr,
  86.             ref **ppvalue));
  87.  
  88. /*
  89.  * Enter a key-value pair in a dictionary.
  90.  * The caller is responsible for checking that the dictionary is writable.
  91.  * Return 1 if this was a new entry, 0 if this replaced an existing entry.
  92.  * Failure returns are as for dict_find, except that e_dictfull doesn't
  93.  * occur if the dictionary is full but expandable, plus:
  94.  *    e_invalidaccess for an attempt to store a younger key or value into
  95.  *      an older dictionary;
  96.  *    e_VMerror if a VMerror occurred while trying to expand the
  97.  *      dictionary.
  98.  */
  99. int dict_put(P3(ref *pdref, const ref *key, const ref *pvalue));
  100.  
  101. /*
  102.  * Enter a key-value pair where the key is a (constant) C string.
  103.  */
  104. int dict_put_string(P3(ref *pdref, const char *kstr, const ref *pvalue));
  105.  
  106. /*
  107.  * Remove a key-value pair from a dictionary.
  108.  * Return 0 or e_undefined.
  109.  */
  110. int dict_undef(P2(ref *pdref, const ref *key));
  111.  
  112. /*
  113.  * Return the number of elements in a dictionary.
  114.  */
  115. uint dict_length(P1(const ref *pdref));
  116.  
  117. /*
  118.  * Return the capacity of a dictionary.
  119.  */
  120. uint dict_maxlength(P1(const ref *pdref));
  121.  
  122. /*
  123.  * Return the maximum index of a slot within a dictionary.
  124.  * Note that this may be greater than maxlength.
  125.  */
  126. uint dict_max_index(P1(const ref *pdref));
  127.  
  128. /*
  129.  * Copy one dictionary into another.
  130.  * Return 0 or e_dictfull.
  131.  * If new_only is true, only copy entries whose keys
  132.  * aren't already present in the destination.
  133.  */
  134. int dict_copy_entries(P3(const ref *dfrom, ref *dto, bool new_only));
  135. #define dict_copy(dfrom, dto) dict_copy_entries(dfrom, dto, false)
  136. #define dict_copy_new(dfrom, dto) dict_copy_entries(dfrom, dto, true)
  137.  
  138. /*
  139.  * Grow or shrink a dictionary.
  140.  * Return 0, e_dictfull, or e_VMerror.
  141.  */
  142. int dict_resize(P2(ref *pdref, uint newmaxlength));
  143.  
  144. /*
  145.  * Grow a dictionary in the same way as dict_put does.
  146.  * We export this for some special-case code in zop_def.
  147.  */
  148. int dict_grow(P1(ref *pdref));
  149.  
  150. /*
  151.  * Ensure that a dictionary uses the unpacked representation for keys.
  152.  * (This is of no interest to ordinary clients.)
  153.  */
  154. int dict_unpack(P1(ref *pdref));
  155.  
  156. /*
  157.  * Prepare to enumerate a dictionary.
  158.  * Return an integer suitable for the first call to dict_next.
  159.  */
  160. int dict_first(P1(const ref *pdref));
  161.  
  162. /*
  163.  * Enumerate the next element of a dictionary.
  164.  * index is initially the result of a call on dict_first.
  165.  * Either store a key and value at eltp[0] and eltp[1]
  166.  * and return an updated index, or return -1
  167.  * to signal that there are no more elements in the dictionary.
  168.  */
  169. int dict_next(P3(const ref *pdref, int index, ref *eltp));
  170.  
  171. /*
  172.  * Given a value pointer return by dict_find, return an index that
  173.  * identifies the entry within the dictionary. (This may, but need not,
  174.  * be the same as the index returned by dict_next.)
  175.  * The index is in the range [0..max_index-1].
  176.  */
  177. int dict_value_index(P2(const ref *pdref, const ref *pvalue));
  178.  
  179. /*
  180.  * Given an index in [0..max_index-1], as returned by dict_value_index,
  181.  * return the key and value, as returned by dict_next.
  182.  * If the index designates an unoccupied entry, return e_undefined.
  183.  */
  184. int dict_index_entry(P3(const ref *pdref, int index, ref *eltp));
  185.  
  186. /*
  187.  * The following are some internal details that are used in both the
  188.  * implementation and some high-performance clients.
  189.  */
  190.  
  191. /* On machines with reasonable amounts of memory, we round up dictionary
  192.  * sizes to the next power of 2 whenever possible, to allow us to use
  193.  * masking rather than division for computing the hash index.
  194.  * Unfortunately, if we required this, it would cut the maximum size of a
  195.  * dictionary in half.  Therefore, on such machines, we distinguish
  196.  * "huge" dictionaries (dictionaries whose size is larger than the largest
  197.  * power of 2 less than dict_max_size) as a special case:
  198.  *
  199.  *    - If the top dictionary on the stack is huge, we set the dtop
  200.  *    parameters so that the fast inline lookup will always fail.
  201.  *
  202.  *    - For general lookup, we use the slower hash_mod algorithm for
  203.  *    huge dictionaries.
  204.  */
  205. #define dict_max_non_huge ((uint)(max_array_size / 2 + 1))
  206.  
  207. /* Hash an arbitrary non-negative or unsigned integer into a dictionary. */
  208. #define dict_hash_mod_rem(hash, size) ((hash) % (size))
  209. #define dict_hash_mod_mask(hash, size) ((hash) & ((size) - 1))
  210. #define dict_hash_mod_small(hash, size) dict_hash_mod_rem(hash, size)
  211. #define dict_hash_mod_inline_small(hash, size) dict_hash_mod_rem(hash, size)
  212. #define dict_hash_mod_large(hash, size)\
  213.   (size > dict_max_non_huge ? dict_hash_mod_rem(hash, size) :\
  214.    dict_hash_mod_mask(hash, size))
  215. #define dict_hash_mod_inline_large(hash, size) dict_hash_mod_mask(hash, size)
  216. /* Round up the requested size of a dictionary.  Return 0 if too big. */
  217. uint dict_round_size_small(P1(uint rsize));
  218. uint dict_round_size_large(P1(uint rsize));
  219. /* Choose the algorithms depending on the size of memory. */
  220. #if arch_small_memory
  221. #  define dict_hash_mod(h, s) dict_hash_mod_small(h, s)
  222. #  define dict_hash_mod_inline(h, s) dict_hash_mod_inline_small(h, s)
  223. #  define dict_round_size(s) dict_round_size_small(s)
  224. #else
  225. #  ifdef DEBUG
  226. #    define dict_hash_mod(h, s)\
  227.        (gs_debug_c('.') ? dict_hash_mod_small(h, s) :\
  228.     dict_hash_mod_large(h, s))
  229. #    define dict_hash_mod_inline(h, s)\
  230.        (gs_debug_c('.') ? dict_hash_mod_inline_small(h, s) :\
  231.     dict_hash_mod_inline_large(h, s))
  232. #    define dict_round_size(s)\
  233.        (gs_debug_c('.') ? dict_round_size_small(s) :\
  234.     dict_round_size_large(s))
  235. #  else
  236. #    define dict_hash_mod(h, s) dict_hash_mod_large(h, s)
  237. #    define dict_hash_mod_inline(h, s) dict_hash_mod_inline_large(h, s)
  238. #    define dict_round_size(s) dict_round_size_large(s)
  239. #  endif
  240. #endif
  241.